home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000343_woodyt@nowhere.com_Tue Aug 28 10:00:35 EDT 2001.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  80 lines

  1. Article: 12723 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!yellow.newsread.com!netaxs.com!newsread.com!news.stealth.net!newsgate.cuhk.edu.hk!news.hongkong1.level3.net!news.hongkong1.level3.net!news.ilink.net!not-for-mail
  3. From: "Thomas Woody" <woodyt@nowhere.com>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: C-Kermit 8 Beta - FTP using SSL Setup Issue
  6. Date: Mon, 27 Aug 2001 20:42:07 -0500
  7. Organization: iLink.net
  8. Lines: 60
  9. Message-ID: <9mesjh$vog$1@news.ilink.net>
  10. NNTP-Posting-Host: 63.149.33.151
  11. X-Trace: news.ilink.net 998962610 32528 63.149.33.151 (28 Aug 2001 01:36:50 GMT)
  12. X-Complaints-To: usenet@news.ilink.net
  13. NNTP-Posting-Date: Tue, 28 Aug 2001 01:36:50 +0000 (UTC)
  14. X-Priority: 3
  15. X-MSMail-Priority: Normal
  16. X-Newsreader: Microsoft Outlook Express 5.50.4522.1200
  17. X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200
  18. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12723
  19.  
  20. Hello!
  21. I'm fairly new to the Unix world and have been tasked with setting up an
  22. automatic secure FTP update process to a remote "secure" FTP server. I found
  23. C-Kermit and have now been trying to get it installed on Solaris 7 with the
  24. Open SSL options but I have encountered difficulties. Hoping someone can
  25. help me out. Already I downloaded the OpenSSL 0.9.6b and installed it after
  26. discovering C-Kermit could not make an SSL FTP connection. Now I'm stuck
  27. trying to edit my makefile Solaris7 section with the proper SSL
  28. configuration and gettting the following error:
  29. ----------------------------------
  30. # make solaris7g
  31. make "MAKE=make" solaris2xg KTARGET=${KTARGET:-solaris7g} \
  32. "KFLAGS=-DSOLARIS7 "
  33. make[1]: Entering directory `/opt/install/c-kermit'
  34. Making C-Kermit "8.0.200" for Solaris 2.x with GNU cc...
  35. Please read the comments that accompany the solaris2xg target.
  36. make xermit KTARGET=${KTARGET:-solaris2xg} CC=gcc CC2=gcc \
  37. "CFLAGS = -g -O -Usun -DSVR4 -DSOLARIS -DSTERMIOX -DSELECT -DFNFLOAT \
  38. -DCK_CURSES -DCK_NEWTERM -DDIRENT -DHDBUUCP -DTCPSOCKET -DSOLARIS7 " \
  39. "LIBS= -ltermlib -lsocket -lnsl -lm -lresolv"
  40. make[2]: Entering directory `/opt/install/c-kermit'
  41. gcc  -o wermit \
  42.         ckcmai.o ckclib.o ckutio.o ckufio.o \
  43.         ckcfns.o ckcfn2.o ckcfn3.o ckuxla.o \
  44.         ckcpro.o ckucmd.o ckuus2.o ckuus3.o \
  45.         ckuus4.o ckuus5.o ckuus6.o ckuus7.o \
  46.         ckuusx.o ckuusy.o ckuusr.o ckucns.o \
  47.         ckudia.o ckuscr.o ckcnet.o ckusig.o \
  48.         ckctel.o ckcuni.o ckupty.o ckcftp.o \
  49.         -ltermlib -lsocket -lnsl -lm -lresolv
  50. make[2]: Leaving directory `/opt/install/c-kermit'
  51. make[1]: Leaving directory `/opt/install/c-kermit'
  52. DCK_AUTHENTICATION -DCK_SSL \
  53. -DBIGBUFOK -I/usr/local/ssl/include \
  54. make: DCK_AUTHENTICATION: Command not found
  55. make: [solaris7g] Error 127 (ignored)
  56. "LIBS= -L/usr/local/ssl/lib \
  57. -lssl -lcrypto"
  58. /bin/sh: LIBS= -L/usr/local/ssl/lib  -lssl -lcrypto: not found
  59. make: *** [solaris7g] Error 1
  60. ---------------------------------------------------------
  61.  
  62. My Solaris7 makefile entry looks like this:
  63.  
  64. #Solaris 7 with gcc (32-bit)
  65. solaris7g:
  66.         $(MAKE) "MAKE=$(MAKE)" solaris2xg KTARGET=$${KTARGET:-$(@)} \
  67.         "KFLAGS=-DSOLARIS7 $(KFLAGS)"
  68.         -DCK_AUTHENTICATION -DCK_SSL \
  69.         -DBIGBUFOK -I/usr/local/ssl/include \
  70.         "LIBS= -L/usr/local/ssl/lib \
  71.         -lssl -lcrypto"
  72.  
  73. Thanks,
  74.  
  75. Thomas
  76.  
  77.  
  78.  
  79.  
  80.